You are here: Statements and Functions > Sqrt()
Syntax samples
SQRT(<expression>)
Real1 = SQRT(Real2)
Returns the square root of an expression.
Any expression. This function returns a real number.
Components
<expression>
SQRT() returns the square root of this expression.
ROUND().
Please note
To get a root other than the square root, use the exponentiation operator as shown in the following formula:
X**(1/Y)
For example, where Y is the desired root, the formula 9**(1/3) returns the cube root of 9.